home *** CD-ROM | disk | FTP | other *** search
/ Inside Indy 1993 / Inside Indy 1993.iso / demos / WorkShop / chkinstall next >
Encoding:
Text File  |  1993-06-23  |  247 b   |  12 lines

  1. #!/bin/csh
  2.  
  3. # Use versions to lookup software
  4. set CHECK = `/usr/sbin/versions $1 | tail -1 | /usr/bin/awk -F. '{print $1}' | /usr/bin/awk '{print $2}'`
  5.  
  6. # Return whether or not it was found
  7. if ($CHECK == $1) then
  8.     echo "yes"
  9. else
  10.     echo "no"
  11. endif
  12.